home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Errors
/
VolumeAlreadyOnline.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
310b
|
21 lines
// VolumeAlreadyOnline.h
#ifndef VolumeAlreadyOnline_h
#define VolumeAlreadyOnline_h
#ifndef MountError_h
#include "MountError.h"
#endif
class VolumeAlreadyOnline: public MountError
{
public:
VolumeAlreadyOnline( OSErr error )
: MountError( error )
{}
// used for volOnLinErr
};
#endif